home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 May: Tool Chest / Dev.CD May 98 TC.toast / Tool Chest / Testing & Debugging / Mac OS Development Toolkit / Automation Essentials 2.3.0 / Host Automation Folder / VU External Tool libs / Results Express.vutool 2.0.1 < prev    next >
Encoding:
Text File  |  1998-03-19  |  1.5 KB  |  55 lines  |  [TEXT/MPS ]

  1. #
  2. #    File:        Results Express.vutool 2.0.1
  3. #
  4. #    Contains:    Contains the V.U. external tool declaration for V.U. 2.1 and after
  5. #
  6. #    Written by:    RV
  7. #
  8. #    Copyright:    © 1994-1997 by Apple Computer, Inc., all rights reserved.
  9. #
  10. #    Change History (most recent first):
  11. #
  12. #    Version      Date        Who        Comments
  13. #    =======    ========    ===        ===============
  14. #    1.1.0    02/12/97    JAS        Added 'vers' resources to library.
  15. #                                These should always match tool version when tool is revved.
  16. #            7/19/94        RV        xxx put comment here xxx
  17. #
  18. #    To Do:
  19. #
  20.  
  21. #######################################################################################
  22. #    Results Express external tool declaration
  23. #
  24. #######################################################################################
  25. Tool ResultsExpress s:'RETL'
  26.  
  27. begin
  28.  
  29.     # Services specific to VUTool:
  30.     
  31.      Service "NewRecord"(     'integer', 
  32.                             'undefined', 
  33.                             'list' ) return 'string';
  34.                              
  35.      Service "SetFields"(     'integer', 
  36.                             'undefined', 
  37.                             'list' ) return 'string';
  38.                              
  39.      Service "Consolidate"(    'undefined', 
  40.                             'string', 
  41.                             'symbol', 
  42.                             'symbol' ) return 'list';
  43.     
  44.     # Services common to all Virtual User external tools:
  45.     
  46.     Service "Initialize"( 'undefined' );        # pass TRUE for target, FALSE for host
  47.     Service "Cancel"( 'string' );
  48.     Service "GetToolServices"() return 'list';
  49.     Service "GetToolVersion"() return 'list';
  50.     Service "Poll"( 'string' ) return 'string';
  51.     Service "ServiceSupported"( 'string' ) return 'undefined';
  52.     Service "Quit"();
  53.  
  54. end;
  55.